home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Frameworks / TransSkel 3.18 / Source / Dialog Item Stuff / SkelGetDlogRect.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-20  |  203 b   |  16 lines  |  [TEXT/KAHL]

  1. /*
  2.  * Get bounding rectangle of a dialog item.
  3.  */
  4.  
  5. # include    "TransSkel.h"
  6.  
  7.  
  8. pascal void
  9. SkelGetDlogRect (DialogPtr d, short item, Rect *r)
  10. {
  11. short    type;
  12. Handle    h;
  13.  
  14.     GetDItem (d, item, &type, &h, r);
  15. }
  16.